curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_followup_select_past_meeting \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_meeting_id": "{{calendar_event_id}}",
"past_calendar_events": "{{past_calendar_events}}",
"output_variable_name": "selected_meeting"
}
'{
"status": 123,
"response": {}
}Extracts the selected meeting from a list of past calendar events based on the meeting ID.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_followup_select_past_meeting \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_meeting_id": "{{calendar_event_id}}",
"past_calendar_events": "{{past_calendar_events}}",
"output_variable_name": "selected_meeting"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)
The event ID selected by the user from past calendar events.
Array of {label, value} objects from Get Calendar Events List action.
Variable name to store the selected meeting details.
^[a-zA-Z][a-zA-Z0-9_]*$